home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / comm / bbs / FilePather13.lha / FilePather / BBS_examples / Reccoon.txt < prev    next >
Encoding:
Text File  |  1995-04-08  |  586 b   |  23 lines

  1.  
  2.  How to use Filepather with Reccoon:
  3.  ===================================
  4.  
  5.  Just add a "int FileCopy(string);" (without quotes) before the 'return;'
  6.  in RcnHooks.FPL and then, at the end of the file, insert this:
  7.  
  8.  --- 8< ---
  9.    int FileCopy(string fil)
  10.    {
  11.       string buf;
  12.  
  13.       buf = CookString("c:FilePather <Temp Uploads>/Tmp~sl%d~/");
  14.       SimpleDOS(buf);
  15.       return(0);
  16.    }
  17.  --- 8< ---
  18.  
  19.  NOTE! <Temp Uploads> must be the path of where the files are stored
  20.  during a batch upload (see config prg, system paths).
  21.  
  22.  Written by Henric Andersson, sysop Elsewhere Development.
  23.